home *** CD-ROM | disk | FTP | other *** search
/ Mac-Source 1994 July / Mac-Source_July_1994.iso / C and C++ / Utilities / indent-1.8 / UserStartup•Indent < prev    next >
Text File  |  1994-01-19  |  814b  |  29 lines

  1. # UserStartup•Indent
  2. #
  3. # Franklin Chen
  4. # Tue, Apr 6, 1993    Version 1.7
  5. # Wed, Jan 19, 1994    Version 1.8
  6.  
  7. # Indent will look in this directory for the file "Indent Prefs"
  8.     Set INDENT_PREFDIR    "{SystemFolder}Preferences:"
  9.     Export INDENT_PREFDIR
  10.  
  11. # The default for the simple backup suffix is "~", e.g., file "foo.c"
  12. # would be backed up to "foo.c~"
  13.  
  14.     Set SIMPLE_BACKUP_SUFFIX    ".bak"
  15.     Export SIMPLE_BACKUP_SUFFIX
  16.     
  17. # Set the type of backup file:
  18. # "none" or "never"    self-explanatory
  19. # "simple"
  20. # "numbered" or "t"    "foo.c" is backed up to "foo.c.~V~", where
  21. #            V is one greater than the highest existing
  22. #            version in the directory of "foo.c"
  23. # "numbered_existing" or "nil"
  24. #            default; numbered backups are made only if
  25. #            there already exist numbered backups
  26.  
  27.     Set VERSION_CONTROL    "numbered"
  28.     Export VERSION_CONTROL
  29.